Crate faer_cholesky

source ·

Modules

  • The Cholesky decomposition with diagonal $D$ of a hermitian matrix $A$ is such that: $$A = LDL^H,$$ where $D$ is a diagonal matrix, and $L$ is a unit lower triangular matrix.
  • The Cholesky decomposition of a hermitian positive definite matrix $A$ is such that: $$A = LL^H,$$ where $L$ is a lower triangular matrix.

Functions

  • Computes a permutation that reduces the chance of numerical errors during the $LDL^H$ factorization with diagonal $D$, then stores the result in perm_indices and perm_inv_indices.